radix tree - перевод на русский
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

radix tree - перевод на русский

DATA STRUCTURE THAT REPRESENTS A SPACE-OPTIMIZED TRIE IN WHICH EACH NODE THAT IS THE ONLY CHILD IS MERGED WITH ITS PARENT
Patricia trie; Patricia trees; Patricia tree; Patricia-trie; PATRICIA; Crit bit tree; Radix trie; Crit bit trie; Crit-bit tree; Radixtree; Compact prefix tree; PATRICIA trie; PATRICIA tree
  • 313x313px
  • 350x350px

radix tree         

математика

базисное дерево

prefix tree         
  • {baby, bad, bank, box, dad, dance}}}. The lists are sorted to allow traversal in lexicographic order.
  • Fig. 2: Trie representation of the string sets: sea, sells, and she.
ORDERED TREE DATA STRUCTURE USED TO STORE A DYNAMIC SET OR ASSOCIATIVE ARRAY
Prefix tree; Digital tree; B-trie; Compressing tries; Bitwise tries

математика

префиксное дерево

mixed radix         
POSITIONAL NUMERAL SYSTEM IN WHICH POSITIONS HAVE DIFFERENT NUMERICAL BASES
Mixed Radix; Mixed-radix

математика

смешанное основание (системы счисления)

Определение

ТРИ, ГЕРБЕРТ БИРБОМ
(Tree, Herbert Beerbohm) (1853-1917), английский актер, антрепренер и режиссер. Родился 17 декабря 1853 в Лондоне, сводный брат известного писателя и карикатуриста М.Бирбома. Первой актерской удачей Три стала роль викария в фарсе У.Джиллета Личный секретарь (The Private Secretary, 1884). Спустя три года он открыл театр "Комеди" и стал во главе его, но вскоре перешел в театр "Хеймаркет", где успешно играл в пьесах У.Шекспира и Р.Б.Шеридана, а также в новом репертуаре (Женщина, не стоящая внимания О.Уайльда, сценическое переложение романа Дж.Дюморье Трильби). Среди прочих актерских удач - король Иоанн, Фальстаф, Шейлок, кардинал Вулси, Стокман (Враг народа Г.Ибсена), Фейгин из Оливера Твиста, Микобер и Пегготи в инсценировке Дэвида Копперфильда Ч.Диккенса.
В 1904 Три основал в Лондоне школу драматического искусства, впоследствии преобразованную в Королевскую академию театрального искусства. В 1909 был возведен в дворянское достоинство. Умер Три в Лондоне 2 июля 1917.

Википедия

Radix tree

In computer science, a radix tree (also radix trie or compact prefix tree or compressed trie) is a data structure that represents a space-optimized trie (prefix tree) in which each node that is the only child is merged with its parent. The result is that the number of children of every internal node is at most the radix r of the radix tree, where r is a positive integer and a power x of 2, having x ≥ 1. Unlike regular trees, edges can be labeled with sequences of elements as well as single elements. This makes radix trees much more efficient for small sets (especially if the strings are long) and for sets of strings that share long prefixes.

Unlike regular trees (where whole keys are compared en masse from their beginning up to the point of inequality), the key at each node is compared chunk-of-bits by chunk-of-bits, where the quantity of bits in that chunk at that node is the radix r of the radix trie. When r is 2, the radix trie is binary (i.e., compare that node's 1-bit portion of the key), which minimizes sparseness at the expense of maximizing trie depth—i.e., maximizing up to conflation of nondiverging bit-strings in the key. When r ≥ 4 is a power of 2, then the radix trie is an r-ary trie, which lessens the depth of the radix trie at the expense of potential sparseness.

As an optimization, edge labels can be stored in constant size by using two pointers to a string (for the first and last elements).

Note that although the examples in this article show strings as sequences of characters, the type of the string elements can be chosen arbitrarily; for example, as a bit or byte of the string representation when using multibyte character encodings or Unicode.

Как переводится radix tree на Русский язык